    * {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
    }

    body {
        color: #000;
        overflow-x: hidden;
    }

    @font-face {
        font-family: "Rockwell";
        src: url("./font/RockwellExtraBoldRegular.ttf") format("truetype");
        font-weight: 400;
        font-display: swap;
    }

    /* BLACK */
    @font-face {
        font-family: "NeueHaas";
        src: url("./font/NeueHaasDisplayBlack.ttf") format("truetype");
        font-weight: 900;
        font-style: normal;
        font-display: swap;
    }

    /* BOLD */
    @font-face {
        font-family: "NeueHaas";
        src: url("./font/NeueHaasDisplayBold.ttf") format("truetype");
        font-weight: 700;
        font-style: normal;
        font-display: swap;
    }

    /* BOLD ITALIC */
    @font-face {
        font-family: "NeueHaas";
        src: url("./font/NeueHaasDisplayBoldItalic.ttf") format("truetype");
        font-weight: 700;
        font-style: italic;
        font-display: swap;
    }

    /* MEDIUM ITALIC */
    @font-face {
        font-family: "NeueHaas";
        src: url("./font/NeueHaasDisplayMediumItalic.ttf") format("truetype");
        font-weight: 500;
        font-style: italic;
        font-display: swap;
    }



    .menu-overlay {
        width: 95%;
        background: linear-gradient(90deg, #ffffff 0%, #ffffff 100%);
        box-shadow: 0px 5px 20px 5px #000000b8;
        height: 100px;
        border-bottom-left-radius: 40px;
        border-bottom-right-radius: 40px;
        display: flex;
        justify-content: center;
        align-items: center;
        padding: 0 40px;
        position: fixed;
        top: 0;
        left: 2.5%;
        z-index: 9999;
    }

    .menu-content {
        width: 100%;
        display: flex;
        padding: 10px 50px;
        align-items: center;
        justify-content: space-between;
    }

    .menu-logo {
        width: auto;
        height: 80px;
        object-fit: contain;
        flex-shrink: 0;
        display: block;
    }

    .menu-links {
        display: flex;
        gap: 40px;
    }

    .menu-links a {
        font-family: "Rockwell", serif;
        color: #0f3d6e;
        font-size: 20px;
        font-weight: 600;
        text-decoration: none;
    }

    .menu-links a:hover {
        opacity: 0.7;
    }

    /* HAMBURGER ICON */
    .hamburger {
        width: 32px;
        height: 24px;
        display: none;
        flex-direction: column;
        justify-content: space-between;
        cursor: pointer;
    }

    .hamburger span {
        width: 100%;
        height: 4px;
        background: #0B233F;
        /* safe fix: visible on white background */
        border-radius: 3px;
        transition: 0.3s ease;
    }

    /* HAMBURGER ACTIVE STATE */
    .hamburger.active span:nth-child(1) {
        transform: translateY(10px) rotate(45deg);
    }

    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active span:nth-child(3) {
        transform: translateY(-10px) rotate(-45deg);
    }

    /* MOBILE MENU (HIDDEN) */
    .mobile-menu {
        position: fixed;
        top: 0;
        right: -351px;
        width: 321px;
        height: 100vh;
        background: #ffffff;
        box-shadow: -5px 0 20px rgba(0, 0, 0, 0.2);
        padding: 160px 30px;
        display: flex;
        gap: 30px;
        transition: 0.4s ease;
        z-index: 999;
        align-items: center;
        align-content: flex-end;
        flex-direction: column;
    }

    .mobile-menu a {
        font-family: "Rockwell", serif;
        font-size: 20px;
        color: #000;
        text-decoration: none;
        font-weight: 600;
    }

    /* MOBILE MENU OPEN */
    .mobile-menu.open {
        right: 0;
    }

    /* SHOW HAMBURGER ON MOBILE */
    @media (max-width: 991px) {
        .menu-links {
            display: none !important;
        }

        .hamburger {
            display: flex;
        }
    }

    @media (max-width: 991px) {
        .menu-links {
            display: none !important;
        }

        .hamburger {
            display: flex;
        }
    }

    /* MOBILE MENU DROPDOWN */
    @media (max-width: 900px) {

        .menu-links {
            position: absolute;
            top: 120px;
            left: 0;
            width: 100%;
            flex-direction: column;
            background: #444;
            padding: 30px 0;
            gap: 20px;
            display: none;
            border-bottom-left-radius: 30px;
            border-bottom-right-radius: 30px;
        }

        .menu-links.open {
            display: flex;
        }

        .hamburger {
            display: flex;
        }
    }

    @media (max-width: 1300px) {
        .menu-links a {
            font-size: 15px;
        }

        .menu-overlay {
            height: 80px;
        }
    }




    /* HERO SECTION */
    .hero {
        position: relative;
        width: 100%;
        padding: 11pc 0 14pc 0;
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 40px;
        overflow: hidden;
        flex-direction: row-reverse;

        background-image: url(../image/backgourndimage.webp);
        background-attachment: fixed;
        background-position: center;
        background-repeat: no-repeat;
        background-size: cover;
    }

    /* BLUR OVERLAY */
    .hero::before {
        content: "";
        position: absolute;
        inset: 0;
        backdrop-filter: blur(7px);
        background: rgb(0 0 0 / 64%);
        pointer-events: none;
        z-index: 1;
    }

    .hero>* {
        position: relative;
        z-index: 5;
    }


    /* LEFT SIDE TEXT */
    .hero-left {
        width: 36%;
        z-index: 2;
    }



    .title {
        font-family: "Rockwell", serif;
        color: #D8993A;
        font-size: 60px;
        line-height: 1.1;
        font-weight: 400;
        margin: 20px 0;
    }

    .desc {
        font-family: "NeueHaas", sans-serif;
        font-weight: 400;
        width: 80%;
        font-size: 20px;
        line-height: 1.6;
        color: #d4d4d4;
        margin-bottom: 25px;
    }

    /* BUTTONS */
    .buttons {

        display: flex;
        align-items: center;
        gap: 25px;
    }

    .btn-primary {
        font-family: "NeueHaas", sans-serif;
        display: inline-block;
        background: #0F3D6E;
        color: #fff;
        padding: 12px 28px;
        text-decoration: none;
        border-radius: 4px;
        font-weight: 600;
        border: 1px solid #0B233F;
    }



    /* BOOK MOCKUP */
    .hero-book img {
        width: 510px;
        /* border-radius: 6px;
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15); */
        z-index: 2;
    }



    /* RESPONSIVE */
    @media(max-width: 920px) {
        .hero {
            flex-direction: column;
            text-align: center;

            padding: 11pc 0 14pc 0 !important;
        }

        .hero-left {

            padding: 20px;
            width: 100%;
        }

        .title {

            font-size: 28px;
        }

        .desc {
            width: auto;
            font-size: 13px;
        }

        .buttons {
            justify-content: center;
        }
    }

    @media(max-width: 1300px) {
        .hero {
            padding: 11pc 6pc 14pc 6pc;
        }

        .hero-left {
            padding: 20px;
            width: 100%;
        }

        .title {
            font-size: 46px;
        }

        .desc {
            font-size: 15px;
        }

        .hero-book img {
            width: 400px;
        }
    }

    /* SECTION WRAPPER */
    /* ---------- CINEMATIC AUTHOR FEATURE (LIGHT) ---------- */
    .author-section {
        position: relative;
        padding: 160px 0;
        background: #fdfcfb;
        /* Light, premium foundation */
        overflow: hidden;
    }

    /* Immersive Soft Blur Background */
    .author-bg-blur {
        position: absolute;
        inset: 0;
        background-size: cover;
        background-position: center;
        filter: blur(80px) saturate(1.2) brightness(1.2);
        /* Brighter blur */
        opacity: 0.15;
        /* Subtler for light theme */
        z-index: 1;
        transform: scale(1.1);
    }

    .author-section::after {
        content: "";
        position: absolute;
        inset: 0;
        background: radial-gradient(circle at 70% 30%, rgba(216, 153, 58, 0.05), transparent 50%);
        z-index: 2;
    }

    .author-section .content-wrapper {
        position: relative;
        z-index: 10;
        max-width: 1400px;
        margin: 0 auto;
        display: flex;
        align-items: center;
        gap: 100px;
        padding: 0 60px;
    }

    /* Floating Author Portrait */
    .author-image {
        flex: 1;
        max-width: 500px;
        perspective: 2000px;
    }

    .author-image img {
        width: 100%;
        height: auto;
        border-radius: 8px;
        box-shadow: -30px 40px 80px rgba(0, 0, 0, 0.15), 0 0 0 1px rgba(0, 0, 0, 0.05);
        /* transform: rotateY(-15deg) rotateX(8deg); */
        transition: transform 0.8s cubic-bezier(0.23, 1, 0.32, 1);
    }

    .author-image:hover img {
        transform: rotateY(-5deg) rotateX(3deg) scale(1.02);
    }

    /* Premium Text Styles (Dark for Light Theme) */
    .author-text {
        flex: 1.2;
        text-align: left;
    }

    .author-label {
        display: inline-block;
        color: #D8993A;
        font-weight: 900;
        letter-spacing: 5px;
        text-transform: uppercase;
        font-size: 13px;
        margin-bottom: 24px;
        position: relative;
        padding-left: 50px;
    }

    .author-label::before {
        content: "";
        position: absolute;
        left: 0;
        top: 50%;
        width: 40px;
        height: 1px;
        background: #D8993A;
    }

    .author-text h2 {
        font-family: "Rockwell", serif;
        font-size: clamp(32px, 5vw, 56px);
        color: #0B233F;
        /* Dark heading */
        line-height: 1.1;
        margin-bottom: 30px;
        letter-spacing: -1px;
        border: none;
        /* Removed legacy border */
        padding: 0;
    }

    .author-text p {
        font-family: "NeueHaas", sans-serif;
        font-size: 18px;
        line-height: 1.8;
        color: #555;
        /* Neutral dark text */
        margin-bottom: 40px;
        font-weight: 400;
    }

    .author-divider {
        width: 60px;
        height: 2px;
        background: #D8993A;
        margin-bottom: 30px;
    }

    /* RESPONSIVE */
    @media (max-width: 900px) {
        .author-section {
            padding: 100px 20px;
        }

        .author-section .content-wrapper {
            flex-direction: column;
            text-align: center;
            gap: 60px;
            padding: 0 0px;
        }

        .author-text {
            text-align: center;
        }

        .author-label {
            padding-left: 0;
        }

        .author-label::before {
            display: none;
        }

        .author-divider {
            margin: 0 auto 30px;
        }
    }

    /* BUTTON */
    .btn-gold {
        font-family: "NeueHaas", sans-serif;
        display: inline-block;
        padding: 12px 28px;
        border-radius: 12px;
        font-size: 18px;
        font-weight: 600;
        text-decoration: none;
        color: #fff;
        letter-spacing: 0.5px;
        background: #0F3D6E;
        border: 1px solid #0B233F;
        box-shadow: 0 4px 20px rgb(0 0 0 / 64%);
        transition: 0.3s ease;
    }

    .btn-gold:hover {
        background: #0B233F;
        box-shadow: 0 6px 25px rgba(0, 0, 0, 0.25);
        transform: translateY(-2px);
    }


    /* RESPONSIVE */
    @media(max-width: 900px) {
        .content-wrapper {
            flex-direction: column;
            text-align: center;
        }

        .author-image img {
            width: 260px;
            height: auto;
        }
    }

    /* ---------- QUAD CINEMATIC SHOWCASE (4 HUGE BOOKS) ---------- */
    .promo-banner {
        position: relative;
        padding: 160px 20px;
        background: #fcfaf8;
        overflow: hidden;
    }

    /* Cinematic background blur effect */
    .promo-banner::before {
        content: "";
        position: absolute;
        inset: 0;
        background:
            radial-gradient(circle at 10% 20%, rgba(216, 153, 58, 0.04) 0%, transparent 40%),
            radial-gradient(circle at 90% 80%, rgba(15, 61, 110, 0.03) 0%, transparent 40%);
        z-index: 1;
    }

    .promo-container {
        position: relative;
        z-index: 5;
        max-width: 1400px;
        margin: 0 auto;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }

    .promo-header {
        text-align: center;
        max-width: 800px;
    }

    .promo-header .promo-label {
        display: inline-block;
        color: #D8993A;
        font-weight: 900;
        letter-spacing: 6px;
        text-transform: uppercase;
        font-size: 14px;
        margin-bottom: 20px;
        position: relative;
    }

    .promo-header h2 {
        font-family: "Rockwell", serif;
        font-size: clamp(40px, 6vw, 72px);
        color: #0B233F;
        line-height: 1.1;
        margin-bottom: 24px;
        letter-spacing: -2px;
    }

    .promo-header p {
        font-size: 20px;
        color: #666;
        line-height: 1.6;
    }

    /* The Huge Quad Grid */
    .quad-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 80px 100px;
        /* width: 100%; */
        perspective: 3000px;
        padding: 40px 0;
    }

    .huge-book-card {
        position: relative;
        width: 100%;
        max-width: 400px;
        margin: 0 auto;
        /* transform-style: preserve-3d; */
        cursor: pointer;
    }

    .huge-book-card img {
        width: 100%;
        height: auto;
        border-radius: 4px;
        box-shadow: -40px 50px 100px rgba(0, 0, 0, 0.25),
            0 0 0 1px rgba(0, 0, 0, 0.05);
        /* transform: rotateY(-20deg) rotateX(10deg); */
        /* transition: all 0.8s cubic-bezier(0.23, 1, 0.32, 1); */
    }

    .huge-book-card:hover img {
        transform: rotateY(0) rotateX(0) scale(1.05);
        box-shadow: 0 60px 150px rgba(0, 0, 0, 0.3);
    }

    .huge-book-card .book-info-overlay {
        position: absolute;
        bottom: -20px;
        left: 50%;
        transform: translateX(-50%) translateZ(80px) translateY(20px);
        background: rgba(255, 255, 255, 0.8);
        backdrop-filter: blur(15px);
        -webkit-backdrop-filter: blur(15px);
        padding: 15px 25px;
        border-radius: 8px;
        box-shadow: 0 15px 45px rgba(0, 0, 0, 0.15), 0 0 0 1px rgba(255, 255, 255, 0.4);
        width: 110%;
        /* Makes it slightly wider than the book for a dynamic look */
        opacity: 0;
        transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
        pointer-events: none;
        text-align: center;
        border: 1px solid rgba(255, 255, 255, 0.3);
    }

    .huge-book-card:hover .book-info-overlay {
        opacity: 1;
        transform: translateX(-50%) translateZ(80px) translateY(0);
    }

    .book-info-overlay h3 {
        font-family: "Rockwell", serif;
        font-size: 16px;
        line-height: 1.3;
        color: #0B233F;
        margin: 0;
        text-transform: uppercase;
        letter-spacing: 0.5px;
    }

    .promo-cta {
        margin-top: 40px;
    }

    /* Unified button shape */
    .btn,
    .btn-primary,
    .cta-btn,
    .send-btn,
    .btn-gold,
    .btn-gold1 {
        border-radius: 50px !important;
        padding: 16px 40px !important;
        font-weight: 700 !important;
        letter-spacing: 1px !important;
        text-transform: uppercase !important;
    }

    /* MOBILE ADJUSTMENTS */
    @media (max-width: 1024px) {
        .quad-grid {
            grid-template-columns: 1fr;
            gap: 100px;
        }

        .huge-book-card {
            max-width: 400px;
        }
    }


    /* RESPONSIVE */
    @media (max-width: 900px) {
        .promo-banner {
            padding: 60px 20px;
        }

        .book-gallery {
            gap: 18px;
        }

        .book-gallery img {
            width: 160px;
        }

        .shape {
            width: 200px;
            height: 220px;
        }

        .promo-text h2 {
            font-size: 30px;
        }
    }

    @media (max-width: 1300px) {
        .promo-banner {

            padding: 80px 20px;
        }

        .book-gallery {
            gap: 22px;
        }

        .book-gallery img {
            width: 180px;
        }

        .shape {
            width: 200px;
            height: 220px;
        }

        .promo-text h2 {
            font-size: 30px;
        }
    }

    /* CONTACT SECTION */
    .contact-section {
        width: 100%;
        height: auto;
        padding: 50px 0;
        background: white;
    }

    .contact-container {
        display: flex;
        width: 100%;
        max-width: 1300px;
        margin: auto;
    }


    /* LEFT SIDE */
    .left-side {
        flex: 1;
        /* background: #3d3d3d; */
        color: #fff;
        padding: 60px;
    }

    .left-side img {
        width: 114%;
    }

    .left-side h2 {
        margin-top: 25px;
        font-size: 28px;
    }


    /* RIGHT SIDE */
    .right-side {
        flex: 1;
        background: white;
        padding: 80px;
    }

    .right-side h1 {
        font-family: "Rockwell", serif;
        font-size: 32px;
        margin-bottom: 20px;
    }

    .row1 {
        display: flex;
        gap: 20px;
    }

    .row1 input {
        font-family: "NeueHaas", sans-serif;
        flex: 1;
        padding: 12px;
        border: 1px solid #ccc;
        border-radius: 6px;
    }

    textarea {
        font-family: "NeueHaas", sans-serif;
        width: 100%;
        padding: 12px;
        height: 140px;
        margin-top: 20px;
        border-radius: 6px;
        border: 1px solid #ccc;
    }

    .cta-btn {
        font-family: "NeueHaas", sans-serif;
        width: 100%;
        margin-top: 20px;
        padding: 15px;
        border: 1px solid #0B233F;
        background: #0F3D6E;
        color: #fff;
        cursor: pointer;
        border-radius: 6px;
        transition: background 0.2s ease, transform 0.15s ease;
    }

    .cta-btn:hover {
        background: #0B233F;
        transform: translateY(-1px);
    }


    .divider {
        text-align: center;
        margin: 20px 0;
        color: #777;
    }


    /* FOOTER */
    .main-footer {
        width: 100%;
        background: #1a1a1a;
        color: #ccc;
        text-align: center;
        padding: 30px 0;
        font-size: 16px;
    }




    /* RESPONSIVE */
    @media (max-width: 900px) {
        .contact-container {
            flex-direction: column;
        }

        .left-side img {
            width: 100%;
        }

        .left-side,
        .right-side {
            padding: 30px;
        }

        .row1 {
            flex-direction: column;
        }
    }

    @media (max-width: 1300px) {

        .left-side img {
            width: 100%;
        }

        .left-side,
        .right-side {
            padding: 30px 72px 30px 71px;
        }

        .row1 {
            flex-direction: column;
        }
    }

    :root {
        --light-blue: #e3f2fd;
        --primary-blue: #0F3D6E;
        --primary-dark: #0B233F;
    }

    .custom-footer {

        background: linear-gradient(0deg, var(--primary-dark) 0%, var(--primary-blue) 60%);
        font-size: 0.9rem;
    }

    .footer-heading {
        color: #ffffff !important;
        font-size: 1.1rem;
        border-bottom: 2px solid var(--light-blue);
        display: inline-block;
        padding-bottom: 0.3rem;
    }

    .footer-link {
        color: #ffffff !important;
        text-decoration: none;
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 0.3rem 0;
        transition: all 0.3s ease;
    }

    .footer-link:hover {
        color: var(--light-blue) !important;
        transform: translateX(5px);
    }




    .footer-link:hover .link-icon {
        opacity: 1;
        margin-left: 8px;
    }

    .social-link {
        color: #ffffff !important;
        margin-right: 1rem;
        transition: all 0.3s ease;
    }

    .small {
        color: #ffffff !important;
    }

    .social-link:hover {
        color: var(--light-blue) !important;
        transform: translateY(-3px);
    }

    .btn-scroll-top {
        border: none;
        background: none;
        color: var(--light-blue);
        font-size: 1.5rem;
        transition: all 0.3s ease;
    }

    .btn-scroll-top:hover {
        transform: scale(1.1);
    }

    .newsletter-form .form-control:focus {
        border-color: var(--primary-blue);
        box-shadow: 0 0 0 0.2rem rgba(33, 150, 243, 0.25);
    }

    /* Footer logo */
    .footer-logo {
        width: 200px;
        height: auto;
        display: block;
        margin-bottom: 12px;
        filter: drop-shadow(0 2px 6px rgba(0, 0, 0, 0.35));
    }

    /* EXTRA MOBILE TWEAKS */
    @media (max-width: 768px) {
        .menu-overlay {
            width: 100%;
            left: 0;
            height: 72px;
            padding: 0 16px;
            border-bottom-left-radius: 18px;
            border-bottom-right-radius: 18px;
        }

        .menu-content {
            padding: 8px 12px;
        }

        .menu-logo {
            height: 56px;
        }

        .hero {
            padding: 120px 16px 110px 16px;
            gap: 24px;
            background-attachment: scroll;
        }

        .hero-left {
            width: 100%;
            text-align: center;
        }

        .title {
            font-size: 30px;
        }

        .desc {
            width: 100%;
            font-size: 14px;
        }

        .buttons {
            justify-content: center;
        }

        .hero-book img {
            width: 240px;
        }

        .promo-banner {
            padding: 60px 16px;
            background-attachment: scroll;
        }

        .promo-text h2 {
            font-size: 26px;
        }

        .promo-text p {
            font-size: 14px;
        }

        .book-box img {
            width: 320px;
        }

        .contact-section {
            padding: 50px 16px;
        }

        .contact-container {
            flex-direction: column;
            gap: 32px;
            align-items: center;
        }

        .left-side,
        .right-side {
            padding: 30px 16px;
        }

    }

    /* VIDEO TRAILER SECTION */
    .trailer-section {
        position: relative;
        width: 100%;
        height: 100vh;
        background: #000;
        overflow: hidden;
        cursor: none;
        /* Hide default cursor */
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .trailer-container {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        z-index: 1;
    }

    .trailer-container video {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
    }

    /* Cinematic Overlay */
    .trailer-overlay {
        position: absolute;
        inset: 0;
        background: rgba(0, 0, 0, 0.4);
        z-index: 2;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        text-align: center;
        padding: 0px;
        pointer-events: none;
        /* Let clicks pass to video/section */
        transition: opacity 0.6s ease;
    }

    .trailer-overlay h1 {
        font-family: "Rockwell", serif;
        font-size: min(8vw, 80px);
        color: #D8993A;
        text-shadow: 0 4px 20px rgba(0, 0, 0, 0.8);
        text-transform: uppercase;
        letter-spacing: 4px;
        margin-bottom: 10px;
    }

    .trailer-overlay p {
        font-family: "NeueHaas", sans-serif;
        font-size: 1.5rem;
        color: #fff;
        opacity: 0.8;
        max-width: 800px;
    }

    .trailer-overlay-img {
        /* max-width: min(1900px, 100%); */
        width: 100%;
        height: auto;
        /* border: 3px solid #000; */
        object-fit: contain;

        /* filter: drop-shadow(0 8px 32px rgba(0, 0, 0, 0.7)); */
    }

    /* Custom Cursor */
    .play-cursor-wrapper {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        pointer-events: none;
        z-index: 9999;
    }

    .play-cursor {
        position: absolute;
        width: 90px;
        height: 90px;
        border: 2px solid #D8993A;
        background: rgba(0, 0, 0, 0.35);
        border-radius: 50%;
        display: flex;
        justify-content: center;
        align-items: center;
        transform: translate(-50%, -50%) scale(0);
        transition: transform 0.35s cubic-bezier(0.175, 0.885, 0.32, 1.275), opacity 0.3s;
        opacity: 0;
        backdrop-filter: blur(4px);
    }

    .cursor-icon {
        width: 32px;
        height: 32px;
        position: absolute;
        transition: opacity 0.2s ease;
    }

    .cursor-play {
        opacity: 1;
    }

    .cursor-pause {
        opacity: 0;
    }

    .trailer-section.playing .cursor-play {
        opacity: 0;
    }

    .trailer-section.playing .cursor-pause {
        opacity: 1;
    }

    /* Animated pulsing ring */
    .cursor-ring {
        position: absolute;
        width: 100%;
        height: 100%;
        border-radius: 50%;
        border: 2px solid rgba(216, 153, 58, 0.5);
        animation: cursorPulse 1.8s ease-out infinite;
        pointer-events: none;
    }

    @keyframes cursorPulse {
        0% {
            transform: scale(1);
            opacity: 0.7;
        }

        100% {
            transform: scale(1.7);
            opacity: 0;
        }
    }

    .trailer-section:hover .play-cursor {
        opacity: 1;
        transform: translate(-50%, -50%) scale(1);
    }

    @media (max-width: 768px) {
        .trailer-section {
            height: 30vh;
            cursor: auto;
            /* Show default cursor on mobile */
        }

        .play-cursor {
            display: none;
            /* Hide custom cursor on mobile */
        }

        .trailer-overlay h1 {
            font-size: 42px;
        }

        .trailer-overlay p {
            font-size: 1rem;
        }
    }

    /* --- TRAILER CURSOR TEXT RING --- */
    .cursor-text-ring {
        position: absolute;
        width: 160px;
        /* Larger than the inner circle */
        height: 160px;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        pointer-events: none;
        animation: rotateCursorText 10s linear infinite;
    }

    @keyframes rotateCursorText {
        from {
            transform: translate(-50%, -50%) rotate(0deg);
        }

        to {
            transform: translate(-50%, -50%) rotate(360deg);
        }
    }

    .cursor-text-ring svg {
        width: 100%;
        height: 100%;
        overflow: visible;
    }

    .cursor-text-ring text {
        fill: #B67F2D;
        font-family: "NeueHaas", sans-serif;
        font-weight: 900;
        text-transform: uppercase;
        letter-spacing: 5px;
        font-size: 15px;
        /* Slightly larger for readability */
    }

    /* ---------- HOME NEXUS CONTACT SECTION ---------- */
    .home-nexus-section {
        position: relative;
        width: 100%;
        padding: 180px 0;
        background: #fdfcfb;
        /* Luxury Off-White */
        overflow: hidden;
    }

    /* Subtle Gold Flare */
    .home-nexus-section::before {
        content: "";
        position: absolute;
        bottom: -10%;
        left: -10%;
        width: 800px;
        height: 800px;
        background: radial-gradient(circle, rgba(216, 153, 58, 0.04) 0%, transparent 70%);
        filter: blur(80px);
        z-index: 1;
        pointer-events: none;
    }

    .home-nexus-container {
        position: relative;
        z-index: 10;
        max-width: 1300px;
        margin: 0 auto;
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 100px;
        padding: 0 5%;
    }

    /* Left Visual Column */
    .home-nexus-left {
        flex: 1;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        gap: 40px;
    }

    .home-nexus-visual {
        position: relative;
        width: 100%;
        max-width: 500px;
    }

    .home-nexus-visual img {
        width: 100%;
        height: auto;
        filter: drop-shadow(0 40px 80px rgba(11, 35, 63, 0.1));
        animation: nexus-home-float 6s infinite ease-in-out;
    }

    @keyframes nexus-home-float {

        0%,
        100% {
            transform: translateY(0) rotate(0);
        }

        50% {
            transform: translateY(-20px) rotate(1deg);
        }
    }

    .home-nexus-left h2 {
        font-family: "Rockwell", serif;
        font-size: 64px;
        color: #0B233F;
        line-height: 1;
        letter-spacing: -3px;
        margin: 0;
    }

    .home-nexus-left p {
        font-family: "NeueHaas", sans-serif;
        color: rgba(11, 35, 63, 0.6);
        font-size: 17px;
        letter-spacing: 1px;
        line-height: 1.8;
        max-width: 500px;
    }

    /* Right Form Column: Home Nexus Card */
    .home-nexus-right {
        flex: 1.2;
        background: rgba(255, 255, 255, 0.95);
        backdrop-filter: blur(15px);
        -webkit-backdrop-filter: blur(15px);
        border: 1px solid rgba(11, 35, 63, 0.05);
        border-radius: 40px;
        padding: 70px;
        box-shadow: 0 60px 120px rgba(11, 35, 63, 0.08),
            0 20px 40px rgba(0, 0, 0, 0.02);
        position: relative;
    }

    .home-nexus-right h3 {
        font-family: "Rockwell", serif;
        font-size: 36px;
        color: #0B233F;
        margin-bottom: 50px;
        letter-spacing: -1.5px;
    }

    /* Premium Form Styling */
    .home-contact-form {
        display: flex;
        flex-direction: column;
        gap: 40px;
    }

    .home-input-group {
        position: relative;
        width: 100%;
    }

    .home-contact-form input,
    .home-contact-form textarea {
        width: 100%;
        background: transparent;
        border: none;
        border-bottom: 1px solid rgba(11, 35, 63, 0.1);
        padding: 15px 0;
        color: #0B233F;
        font-family: "NeueHaas", sans-serif;
        font-size: 17px;
        outline: none;
        transition: all 0.4s ease;
    }

    /* Expanding Gold Highlight */
    .home-input-focus-line {
        position: absolute;
        bottom: 0;
        left: 50%;
        width: 0;
        height: 1px;
        background: #D8993A;
        box-shadow: 0 0 15px rgba(216, 153, 58, 0.5);
        transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
        transform: translateX(-50%);
    }

    .home-contact-form input:focus~.home-input-focus-line,
    .home-contact-form textarea:focus~.home-input-focus-line {
        width: 100%;
    }

    .home-contact-form textarea {
        min-height: 150px;
        resize: none;
    }

    /* Luxury Gold Button */
    .home-send-btn {
        margin-top: 20px;
        padding: 22px 55px;
        background: linear-gradient(135deg, #D8993A 0%, #B67F2D 100%);
        border: none;
        border-radius: 100px;
        color: #fff;
        font-family: "NeueHaas", sans-serif;
        font-weight: 700;
        font-size: 14px;
        letter-spacing: 2px;
        text-transform: uppercase;
        cursor: pointer;
        transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
        box-shadow: 0 20px 40px rgba(216, 153, 58, 0.3);
    }

    .home-send-btn:hover {
        transform: translateY(-5px) scale(1.05);
        box-shadow: 0 30px 60px rgba(216, 153, 58, 0.5);
    }

    /* Responsiveness */
    @media (max-width: 1100px) {
        .home-nexus-section {
            padding: 100px 0;
        }

        .home-nexus-container {
            flex-direction: column;
            text-align: center;
            gap: 80px;
        }

        .home-nexus-left {
            align-items: center;
        }

        .home-nexus-left h2 {
            font-size: 48px;
        }

        .home-nexus-right {
            width: 100%;
            padding: 40px;
        }
    }